home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 February / EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso / earcd / midi / omed_pt.lha / rexx / Killtrack.omed < prev    next >
Text File  |  1995-11-25  |  498b  |  27 lines

  1. /* Kill track - Case 18-10-95 */
  2.  
  3. address OCTAMED_REXX
  4. options results
  5.  
  6. 'wi_request "Kill track?" "Full track|Only following notes|Cancel"'; answer = result
  7. if answer ~= 0
  8.     then do
  9.     if answer = 2
  10.         then do
  11.             'op_update off'
  12.             'ed_killnotes currtrack'
  13.             'op_update on'
  14.             'wi_showstring KILLED'
  15.             exit
  16.         end
  17.     else do
  18.         'op_update off'
  19.         'ed_getcurrline var currline'
  20.         'ed_goto line 0'
  21.         'ed_killnotes currtrack'
  22.         'ed_goto line' currline
  23.         'op_update on'
  24.         'wi_showstring KILLED'
  25.     end
  26. else
  27. exit